home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTest5
- AutoRedraw = -1 'True
- BorderStyle = 0 'None
- ClientHeight = 2604
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3504
- ControlBox = 0 'False
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2604
- ScaleWidth = 3504
- ShowInTaskbar = 0 'False
- Begin VB.CheckBox chkWindowEdge
- Caption = "Window Edge"
- Height = 192
- Left = 120
- TabIndex = 3
- Top = 1020
- Width = 2712
- End
- Begin VB.CheckBox chkStaticEdge
- Caption = "Static Edge"
- Height = 192
- Left = 120
- TabIndex = 2
- Top = 720
- Width = 2712
- End
- Begin VB.CheckBox chkClientEdge
- Caption = "Client Edge"
- Height = 192
- Left = 120
- TabIndex = 1
- Top = 420
- Width = 2712
- End
- Begin VB.CheckBox chkAppWindow
- Caption = "AppWindow"
- Height = 192
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2712
- End
- Attribute VB_Name = "frmTest5"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public Sub RefreshStyles()
- Dim w As sgWindow.Window
- Set w = frmMain.g_wndTest
- chkAppWindow.Value = IIf(w.Style And ws_EX_APPWINDOW, 1, 0)
- chkClientEdge.Value = IIf(w.Style And ws_EX_CLIENTEDGE, 1, 0)
- chkStaticEdge.Value = IIf(w.Style And ws_EX_STATICEDGE, 1, 0)
- chkWindowEdge.Value = IIf(w.Style And ws_EX_WINDOWEDGE, 1, 0)
- End Sub
-